--- /dev/null
+/*
+ Copyright (C) 2004 HSA Systems, Sven Dowideit <sven@hsa.com.au>
+
+ This program is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 2 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111 USA
+
+ */
+#include "defs.h"
+#if !NO_EXPAT
+#include <expat.h>
+static XML_Parser psr;
+#endif
+
+static char *cdatastr;
+static int in_Route = 0;
+static int in_ChartWork = 0;
+static int in_Object = 0;
+
+static waypoint *wpt_tmp;
+char *routeName = "ROUTENAME";
+
+#define REPLACEMENT_SIRIUS_ATTR_SEPARATOR ';'
+#define ATTR_USRMRK "usrmrk"
+#define ATTR_OBJECTNAME "OBJNAM"
+#define ATTR_SHIPNAME "shpnam"
+
+void readVersion4( FILE* pFile);
+
+FILE *fd;
+FILE *ofd;
+
+static
+arglist_t hsa_ndv_args[] = {
+// {"deficon", &deficon, "Default icon name", ARGTYPE_STRING },
+ {0, 0, 0, 0}
+};
+
+#define MYNAME "HsaNdv"
+#define MY_CBUF 4096
+
+#define TRUE 1
+#define FALSE 0
+
+
+#if NO_EXPAT
+void
+hsa_ndv_rd_init(const char *fname)
+{
+ fatal(MYNAME ": This build excluded HSA Endeavour support because expat was not installed.\n");
+}
+
+void
+hsa_ndv_read(void)
+{
+}
+#else
+
+static void
+hsa_ndv_start(void *data, const char *el, const char **attr)
+{
+// printf("<%s>\n", el);
+ if (strcmp(el, "Export") == 0)
+ {//should only be one
+ }
+ else if (strcmp(el, "Route") == 0)
+ {
+ in_Route++;
+ }
+ else if (strcmp(el, "Chartwork") == 0)
+ {
+ in_ChartWork++;
+ }
+ else if (strcmp(el, "Object") == 0)
+ {
+ wpt_tmp = xcalloc(sizeof(*wpt_tmp), 1);
+ wpt_tmp->altitude = unknown_alt;
+ in_Object++;
+ }
+ //reset data :)
+ memset(cdatastr,0, MY_CBUF);
+}
+
+static void getAttr(const char *data, const char *attr, char **val, char seperator)
+{
+ char *start;
+ if ((start = strstr(data, attr)) != NULL)
+ {
+ char *end;
+ int len;
+
+ end = strchr(start, seperator);
+ if (end == NULL)
+ {
+ end = start + strlen(start);//assume we are teh last attr
+ }
+
+ len = end-start - strlen(attr);
+
+ *val = xcalloc(len+1, 1);
+ memcpy(*val, start+strlen(attr), len);
+ (*val)[len] = '\0';
+ }
+ else
+ {
+ *val = xcalloc(1, 1);
+ (*val)[0] = '\0';
+ }
+}
+
+static void
+hsa_ndv_end(void *data, const char *el)
+{
+ if (in_Route)
+ {
+ if (strcmp(el, "Version") == 0)
+ {//don't really care
+ }
+ else if (strcmp(el, "Name") == 0)
+ {
+ routeName = xstrdup(cdatastr);
+ }
+ else if (strcmp(el, "LastModified") == 0)
+ {//don't really care
+ }
+ if (in_Object)
+ {
+ if (strcmp(el, "ClassName") == 0)
+ {
+ }
+ else if (strcmp(el, "Attr") == 0)
+ {
+ getAttr(cdatastr, ATTR_OBJECTNAME, &wpt_tmp->shortname, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+ getAttr(cdatastr, ATTR_USRMRK, &wpt_tmp->description, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+ }
+ else if (strcmp(el, "LegAttr") == 0)
+ {
+ }
+ else if (strcmp(el, "NumberOfVertexs") == 0)
+ {
+ }
+ else if (strcmp(el, "Latitude") == 0)
+ {
+ wpt_tmp->latitude = atof(cdatastr);
+ }
+ else if (strcmp(el, "Longitude") == 0)
+ {
+ wpt_tmp->longitude = atof(cdatastr);
+ }
+ }
+ }
+
+ if (in_ChartWork)
+ {
+ if (strcmp(el, "Version") == 0)
+ {//don't really care
+ }
+ if (in_Object)
+ {
+ if (strcmp(el, "ClassName") == 0)
+ {
+// className = xstrdup(cdatastr);
+ }
+ else if (strcmp(el, "Attr") == 0)
+ {
+ //getAttr(cdatastr, ATTR_OBJECTNAME, &wpt_tmp->shortname, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+ //getAttr(cdatastr, ATTR_SHIPNAME, &wpt_tmp->description, REPLACEMENT_SIRIUS_ATTR_SEPARATOR);
+ }
+ else if (strcmp(el, "NumberOfVertexs") == 0)
+ {
+ }
+ else if (strcmp(el, "Latitude") == 0)
+ {
+ wpt_tmp->latitude = atof(cdatastr);
+ }
+ else if (strcmp(el, "Longitude") == 0)
+ {
+ wpt_tmp->longitude = atof(cdatastr);
+ }
+ else if (strcmp(el, "Time") == 0)
+ {
+ wpt_tmp->creation_time = atoi(cdatastr);
+ }
+ }
+ }
+
+ //ignore everything else for now..
+ memset(cdatastr,0, MY_CBUF);
+
+ if (strcmp(el, "Object") == 0)
+ {
+ if (in_Route)
+ {
+ waypt_add(wpt_tmp);
+ }
+ else if (in_ChartWork)
+ {
+ //TODO: not sure how i want to handle this..
+ }
+ in_Object--;
+ }
+ else if (strcmp(el, "Route") == 0)
+ {
+ in_Route--;
+ }
+ else if (strcmp(el, "Chartwork") == 0)
+ {
+ in_ChartWork--;
+ }
+}
+
+static void
+hsa_ndv_cdata(void *dta, const XML_Char *s, int len)
+{
+ char *estr;
+ estr = cdatastr + strlen(cdatastr);
+ memcpy(estr, s, len);
+}
+
+void
+hsa_ndv_rd_init(const char *fname)
+{
+ fd = xfopen(fname, "r", MYNAME);
+
+ psr = XML_ParserCreate(NULL);
+ if (!psr) {
+ fatal(MYNAME ":Cannot create XML parser\n");
+ }
+
+ XML_SetElementHandler(psr, hsa_ndv_start, hsa_ndv_end);
+ cdatastr = xcalloc(MY_CBUF,1);
+ XML_SetCharacterDataHandler(psr, hsa_ndv_cdata);
+}
+
+void
+hsa_ndv_read(void)
+{
+ int len;
+ char buf[MY_CBUF];
+
+ while ((len = fread(buf, 1, sizeof(buf), fd)))
+ {
+ char *bad;
+
+ if (NULL != strstr(buf, "nver=1"))
+ {//its the older format, not xml
+ fseek(fd, 0, SEEK_SET);
+ readVersion4(fd);
+ break;
+ }
+ //grumble - have to remove \x1f's from sirius attributes
+ while (NULL != (bad = strchr(buf, '\x1f')))
+ {
+ *bad = REPLACEMENT_SIRIUS_ATTR_SEPARATOR;
+ }
+ if (!XML_Parse(psr, buf, len, feof(fd))) {
+ fatal(MYNAME ":Parse error at %d: %s\n",
+ XML_GetCurrentLineNumber(psr),
+ XML_ErrorString(XML_GetErrorCode(psr)));
+ }
+ }
+
+ XML_ParserFree(psr);
+}
+
+#endif
+
+void
+hsa_ndv_rd_deinit(void)
+{
+ if ( cdatastr ) {
+ xfree(cdatastr);
+ }
+ fclose(fd);
+}
+
+void
+hsa_ndv_wr_init(const char *fname)
+{
+ ofd = xfopen(fname, "w", MYNAME);
+}
+
+void
+hsa_ndv_wr_deinit(void)
+{
+ fclose(ofd);
+}
+
+static int legNum = 0;
+
+static void
+hsa_ndv_waypt_pr(const waypoint *waypointp)
+{
+
+ fprintf(ofd, "\t\t<Object>\n");
+
+ fprintf(ofd, "\t\t\t<ClassName>waypnt</ClassName>\n");
+//ignore these for now, they are s57 specific
+// fprintf(ofd, "\t\t\t<FeatureNameAgency>0</FeatureNameAgency>\n");
+// fprintf(ofd, "\t\t\t<FeatureNameSubDiv>1</FeatureNameSubDiv>\n");
+// fprintf(ofd, "\t\t\t<FeatureNameNumber>1089009023</FeatureNameNumber>\n");
+ fprintf(ofd, "\t\t\t<Attr>attr=grpnam%s\x1ftrnrad50\x1fOBJNAM%s\x1flegnum%i\x1fusrmrk%s\x1fselect2\1f</Attr>\n",
+ routeName, waypointp->shortname, legNum, waypointp->description);
+ fprintf(ofd, "\t\t\t<LegAttr></LegAttr>\n");
+ fprintf(ofd, "\t\t\t<NumberOfVertexs>1</NumberOfVertexs>\n");
+ fprintf(ofd, "\t\t\t<Latitude>%lf</Latitude>\n", waypointp->latitude);
+ fprintf(ofd, "\t\t\t<Longitude>%lf</Longitude>\n", waypointp->longitude);
+
+ fprintf(ofd, "\t\t</Object>\n");
+
+ legNum++;
+}
+
+void
+hsa_ndv_write(void)
+{
+ fprintf(ofd, "<?xml version=\"1.0\"?>\n");
+ fprintf(ofd, "<Export>\n");
+ fprintf(ofd, "\t<Route>\n");
+ fprintf(ofd, "\t\t<Version>1.0000000</Version>\n");
+ fprintf(ofd, "\t\t<Name>ROUTENAME</Name>\n"); /*TODO: used filename? */
+ fprintf(ofd, "\t\t<LastModified>0</LastModified>\n");
+ waypt_disp_all(hsa_ndv_waypt_pr);
+ fprintf(ofd, "\t</Route>\n");
+
+//later we'll import past tracks and chart objects?
+// fprintf(ofd, "\t<Chartwork>\n");
+// fprintf(ofd, "\t\t<Version>1.0000000</Version>\n");
+// track_disp_all(hsa_ndv_track_pr);
+// fprintf(ofd, "\t</Chartwork>\n");
+
+
+ fprintf(ofd, "</Export>\n");
+}
+
+ff_vecs_t HsaEndeavourNavigator_vecs = {
+ ff_type_file,
+ hsa_ndv_rd_init,
+ hsa_ndv_wr_init,
+ hsa_ndv_rd_deinit,
+ hsa_ndv_wr_deinit,
+ hsa_ndv_read,
+ hsa_ndv_write,
+ hsa_ndv_args
+};
+
+//////////////////////////////////////////////////////////////////////////
+// older style Endeavour route export file
+//read DEC2000 NDV export files
+
+#define EF_RECORD_DELIMTER 0
+#define ED_REC_NAME_SIZE 5
+#define EF_NVER_REC "nver="
+#define EF_LAT_REC "lati="
+#define EF_LONG_REC "long="
+#define EF_TIME_REC "time="
+#define EF_ATTR_REC "attr="
+#define EF_CLNM_REC "clnm="
+#define INVALID_TIME -1L
+#define SOUNDARRAY_CHAR 'S'
+
+int readRecord( FILE* pFile, const char* pRecName, char *recData);
+int readPositionRecord( FILE* pFile, double* lat, double* lng, long* timeStamp);
+
+void readVersion4( FILE* pFile)
+{
+ while( TRUE )
+ {
+ char recData[256];
+ // get the position
+ double lat2, lng2;
+
+ // set the pointer to the time stamp depending
+ // on whether we have a sounding array or not
+ long ts1, ts2;
+ long* pts1 = 0;
+ long* pts2 = 0;
+
+ int soundArray = FALSE;
+ int numberOfVerticies;
+ char className[256];
+ char attr[1024];
+ int Vertex;
+
+ memset(attr, 0, 1024);
+
+ wpt_tmp = xcalloc(sizeof(*wpt_tmp), 1);
+ wpt_tmp->altitude = unknown_alt;
+
+ // read the first record
+ if( !readRecord( pFile, EF_NVER_REC, recData) )
+ // no first record then finished
+ break;
+
+ // get the type
+ sscanf( (const char*)recData, "%d", &numberOfVerticies);
+
+ // do we have a sounding array
+ if( *((const char *)recData + strlen(recData) - 1) == SOUNDARRAY_CHAR )
+ {
+ soundArray = TRUE;
+ }
+
+ if( soundArray )
+ {
+ pts1 = &ts1;
+ pts2 = &ts2;
+ }
+
+ // go through the vertices
+ for( Vertex = 0; Vertex < numberOfVerticies; Vertex++)
+ {
+ // read vertex position
+ if( !readPositionRecord( pFile, &lat2, &lng2, pts2) )
+ return;
+
+ wpt_tmp->longitude = lng2;
+ wpt_tmp->latitude = lat2;
+ break;//TODO: ignore more points for now
+ }
+
+
+ // read the class name
+ if( !readRecord( pFile, EF_CLNM_REC, className) )
+ return;
+
+ // read the attributes name
+ if( !readRecord( pFile, EF_ATTR_REC, attr) )
+ return;
+ getAttr(attr, ATTR_OBJECTNAME, &wpt_tmp->shortname, '\x1f');
+ getAttr(attr, ATTR_USRMRK, &wpt_tmp->description, '\x1f');
+
+ {
+ char *bad;
+ //remove \n and \x1f from description data
+ while (NULL != (bad = strchr(wpt_tmp->description, '\x1f')))
+ {
+ *bad = REPLACEMENT_SIRIUS_ATTR_SEPARATOR;
+ }
+ while (NULL != (bad = strchr(wpt_tmp->description, '\n')))
+ {
+ *bad = ' ';
+ }
+ while (NULL != (bad = strchr(wpt_tmp->description, '\r')))
+ {
+ *bad = ' ';
+ }
+ }
+
+ waypt_add(wpt_tmp);
+ }
+
+ fclose(pFile);
+ return;
+}
+
+// read a record to a file
+int readRecord( FILE* pFile, const char* pRecName, char *recData)
+{
+ // get the rec name
+ int len;
+ char recName[ED_REC_NAME_SIZE+1];
+ char arrRecData[256];
+
+ for( len = 0; len < ED_REC_NAME_SIZE; len++)
+ {
+ int c = fgetc( pFile);
+
+ // if we hit EOF failed
+ if( c == EOF )
+ return FALSE;
+
+ recName[len] = c;
+ }
+
+ // if the record name is not the reqiured type then error
+ if( strncmp( recName, pRecName, ED_REC_NAME_SIZE) != 0 )
+ return FALSE;
+
+ // get the rec data
+ for( len = 0; TRUE; len++)
+ {
+ int c = fgetc( pFile);
+
+ // if we hit EOF failed
+ if( c == EOF )
+ return FALSE;
+
+ // hit end of line
+ if( c == EF_RECORD_DELIMTER )
+ break;
+
+ arrRecData[len] = c;
+ }
+
+ // get the rec data to a string
+ strncpy(recData, arrRecData, len);
+
+ return TRUE;
+}
+
+// read position
+int readPositionRecord( FILE* pFile, double* lat, double* lng,
+ long* timeStamp)
+{
+ // read the lat record
+ char recData[256];
+ if( !readRecord( pFile, EF_LAT_REC, recData) )
+ // no lat record then finished
+ return FALSE;
+
+ // read the latitude
+ sscanf( (const char*)recData, "%lf", lat);
+
+ // read the lng record
+ if( !readRecord( pFile, EF_LONG_REC, recData) )
+ // no first record then finished
+ return FALSE;
+
+ // read the latitude
+ sscanf( (const char*)recData, "%lf", lng);
+
+ // if we are to read a time record
+ if( timeStamp )
+ {
+ // read the lng record
+ if( !readRecord( pFile, EF_TIME_REC, recData) )
+ // no first record then finished
+ return FALSE;
+
+ // read the latitude
+ sscanf( (const char*)recData, "%ld", timeStamp);
+ }
+
+ return TRUE;
+}
-# Microsoft Developer Studio Project File - Name="GPSBabel" - Package Owner=<4>\r
-# Microsoft Developer Studio Generated Build File, Format Version 6.00\r
-# ** DO NOT EDIT **\r
-\r
-# TARGTYPE "Win32 (x86) Console Application" 0x0103\r
-\r
-CFG=GPSBabel - Win32 Debug\r
-!MESSAGE This is not a valid makefile. To build this project using NMAKE,\r
-!MESSAGE use the Export Makefile command and run\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "GPSBabel.mak".\r
-!MESSAGE \r
-!MESSAGE You can specify a configuration when running NMAKE\r
-!MESSAGE by defining the macro CFG on the command line. For example:\r
-!MESSAGE \r
-!MESSAGE NMAKE /f "GPSBabel.mak" CFG="GPSBabel - Win32 Debug"\r
-!MESSAGE \r
-!MESSAGE Possible choices for configuration are:\r
-!MESSAGE \r
-!MESSAGE "GPSBabel - Win32 Release" (based on "Win32 (x86) Console Application")\r
-!MESSAGE "GPSBabel - Win32 Debug" (based on "Win32 (x86) Console Application")\r
-!MESSAGE \r
-\r
-# Begin Project\r
-# PROP AllowPerConfigDependencies 0\r
-# PROP Scc_ProjName ""\r
-# PROP Scc_LocalPath ""\r
-CPP=cl.exe\r
-RSC=rc.exe\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 0\r
-# PROP BASE Output_Dir "Release"\r
-# PROP BASE Intermediate_Dir "Release"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 0\r
-# PROP Output_Dir "Release"\r
-# PROP Intermediate_Dir "Release"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c\r
-# ADD CPP /nologo /W3 /GX /O2 /I "expat" /I "..\coldsync" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "__WIN32__" /D VERSION=\"1.2.1_beta01072004_msvc\" /YX /FD /c\r
-# ADD BASE RSC /l 0x409 /d "NDEBUG"\r
-# ADD RSC /l 0x409 /d "NDEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP BASE Use_MFC 0\r
-# PROP BASE Use_Debug_Libraries 1\r
-# PROP BASE Output_Dir "Debug"\r
-# PROP BASE Intermediate_Dir "Debug"\r
-# PROP BASE Target_Dir ""\r
-# PROP Use_MFC 0\r
-# PROP Use_Debug_Libraries 1\r
-# PROP Output_Dir "Debug"\r
-# PROP Intermediate_Dir "Debug"\r
-# PROP Target_Dir ""\r
-# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c\r
-# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "expat" /I "..\coldsync" /D "WIN32" /D "__WIN32__" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.2.1_beta01072004_msvc\" /FR /YX /FD /GZ /c\r
-# SUBTRACT CPP /WX\r
-# ADD BASE RSC /l 0x409 /d "_DEBUG"\r
-# ADD RSC /l 0x409 /d "_DEBUG"\r
-BSC32=bscmake.exe\r
-# ADD BASE BSC32 /nologo\r
-# ADD BSC32 /nologo\r
-LINK32=link.exe\r
-# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r
-# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept\r
-\r
-!ENDIF \r
-\r
-# Begin Target\r
-\r
-# Name "GPSBabel - Win32 Release"\r
-# Name "GPSBabel - Win32 Debug"\r
-# Begin Group "Source Files"\r
-\r
-# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"\r
-# Begin Group "Jeeps"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsapp.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpscom.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmath.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmem.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsprot.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsread.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsrqst.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpssend.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsserial.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsutil.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Jeeps"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Jeeps"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Group "Coldsync"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pdb.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Coldsync"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Coldsync"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\util.c\r
-\r
-!IF "$(CFG)" == "GPSBabel - Win32 Release"\r
-\r
-# PROP Intermediate_Dir "Release\Coldsync"\r
-\r
-!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"\r
-\r
-# PROP Intermediate_Dir "Debug\Coldsync"\r
-\r
-!ENDIF \r
-\r
-# End Source File\r
-# End Group\r
-# Begin Source File\r
-\r
-SOURCE=..\arcdist.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\cetus.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\copilot.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\csv_util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\delgpl.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\duplicate.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\easygps.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\filter_vecs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\garmin.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gcdb.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\geo.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\geoniche.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpilots.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpspilot.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpsutil.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\gpx.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\grtcirc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\holux.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\html.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\internal_styles.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magnav.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magproto.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\main.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapopolis.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsend.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsource.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mkshort.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\navicache.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\netstumbler.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\nmea.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\ozi.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\palmdoc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\pcx.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\polygon.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\position.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\psitrex.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\psp.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\queue.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\quovadis.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\reverse_route.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\route.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\saroute.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\smplrout.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\sort.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\text.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tiger.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tmpro.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\tpg.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\util.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\util_crc.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\vecs.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\vmem.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\waypt.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\xcsv.c\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=.\Expat\libexpat.lib\r
-# End Source File\r
-# End Group\r
-# Begin Group "Header Files"\r
-\r
-# PROP Default_Filter "h;hpp;hxx;hm;inl"\r
-# Begin Group "Coldsync-Headers"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\config.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\palm.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pdb.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\coldsync\pconn\util.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Jeeps-Headers"\r
-\r
-# PROP Default_Filter ""\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gps.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsapp.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpscom.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsdatum.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsfmt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsinput.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmath.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsmem.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmea.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmeafmt.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsnmeaget.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsport.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsproj.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsprot.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsread.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsrqst.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpssend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsserial.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\jeeps\gpsutil.h\r
-# End Source File\r
-# End Group\r
-# Begin Source File\r
-\r
-SOURCE=..\csv_util.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\defs.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\garmin_tables.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\grtcirc.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\holux.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\magellan.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\mapsend.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\queue.h\r
-# End Source File\r
-# Begin Source File\r
-\r
-SOURCE=..\quovadis.h\r
-# End Source File\r
-# End Group\r
-# Begin Group "Resource Files"\r
-\r
-# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"\r
-# End Group\r
-# End Target\r
-# End Project\r
+# Microsoft Developer Studio Project File - Name="GPSBabel" - Package Owner=<4>
+# Microsoft Developer Studio Generated Build File, Format Version 6.00
+# ** DO NOT EDIT **
+
+# TARGTYPE "Win32 (x86) Console Application" 0x0103
+
+CFG=GPSBabel - Win32 Debug
+!MESSAGE This is not a valid makefile. To build this project using NMAKE,
+!MESSAGE use the Export Makefile command and run
+!MESSAGE
+!MESSAGE NMAKE /f "GPSBabel.mak".
+!MESSAGE
+!MESSAGE You can specify a configuration when running NMAKE
+!MESSAGE by defining the macro CFG on the command line. For example:
+!MESSAGE
+!MESSAGE NMAKE /f "GPSBabel.mak" CFG="GPSBabel - Win32 Debug"
+!MESSAGE
+!MESSAGE Possible choices for configuration are:
+!MESSAGE
+!MESSAGE "GPSBabel - Win32 Release" (based on "Win32 (x86) Console Application")
+!MESSAGE "GPSBabel - Win32 Debug" (based on "Win32 (x86) Console Application")
+!MESSAGE
+
+# Begin Project
+# PROP AllowPerConfigDependencies 0
+# PROP Scc_ProjName ""
+# PROP Scc_LocalPath ""
+CPP=cl.exe
+RSC=rc.exe
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 0
+# PROP BASE Output_Dir "Release"
+# PROP BASE Intermediate_Dir "Release"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 0
+# PROP Output_Dir "Release"
+# PROP Intermediate_Dir "Release"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /GX /O2 /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /c
+# ADD CPP /nologo /W3 /GX /O2 /I "expat" /I "..\coldsync" /D "WIN32" /D "NDEBUG" /D "_CONSOLE" /D "_MBCS" /D "__WIN32__" /D VERSION=\"1.2.1_beta01072004_msvc\" /YX /FD /c
+# ADD BASE RSC /l 0x409 /d "NDEBUG"
+# ADD RSC /l 0x409 /d "NDEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /machine:I386
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP BASE Use_MFC 0
+# PROP BASE Use_Debug_Libraries 1
+# PROP BASE Output_Dir "Debug"
+# PROP BASE Intermediate_Dir "Debug"
+# PROP BASE Target_Dir ""
+# PROP Use_MFC 0
+# PROP Use_Debug_Libraries 1
+# PROP Output_Dir "Debug"
+# PROP Intermediate_Dir "Debug"
+# PROP Target_Dir ""
+# ADD BASE CPP /nologo /W3 /Gm /GX /ZI /Od /D "WIN32" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /YX /FD /GZ /c
+# ADD CPP /nologo /W3 /Gm /GX /ZI /Od /I "expat" /I "..\coldsync" /D "WIN32" /D "__WIN32__" /D "_DEBUG" /D "_CONSOLE" /D "_MBCS" /D VERSION=\"1.2.1_beta01072004_msvc\" /FR /YX /FD /GZ /c
+# SUBTRACT CPP /WX
+# ADD BASE RSC /l 0x409 /d "_DEBUG"
+# ADD RSC /l 0x409 /d "_DEBUG"
+BSC32=bscmake.exe
+# ADD BASE BSC32 /nologo
+# ADD BSC32 /nologo
+LINK32=link.exe
+# ADD BASE LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+# ADD LINK32 kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib kernel32.lib user32.lib gdi32.lib winspool.lib comdlg32.lib advapi32.lib shell32.lib ole32.lib oleaut32.lib uuid.lib odbc32.lib odbccp32.lib /nologo /subsystem:console /debug /machine:I386 /pdbtype:sept
+
+!ENDIF
+
+# Begin Target
+
+# Name "GPSBabel - Win32 Release"
+# Name "GPSBabel - Win32 Debug"
+# Begin Group "Source Files"
+
+# PROP Default_Filter "cpp;c;cxx;rc;def;r;odl;idl;hpj;bat"
+# Begin Group "Jeeps"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\jeeps\gpsapp.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpscom.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmath.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmem.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsprot.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsread.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsrqst.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpssend.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsserial.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsutil.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Jeeps"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Jeeps"
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Group "Coldsync"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\coldsync\pdb.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Coldsync"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Coldsync"
+
+!ENDIF
+
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\util.c
+
+!IF "$(CFG)" == "GPSBabel - Win32 Release"
+
+# PROP Intermediate_Dir "Release\Coldsync"
+
+!ELSEIF "$(CFG)" == "GPSBabel - Win32 Debug"
+
+# PROP Intermediate_Dir "Debug\Coldsync"
+
+!ENDIF
+
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=..\arcdist.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\cetus.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\copilot.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\csv_util.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\delgpl.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\duplicate.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\easygps.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\filter_vecs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\garmin.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gcdb.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\geo.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\geoniche.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpilots.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpspilot.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpsutil.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\gpx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\grtcirc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\holux.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\hsa_ndv.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\html.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\internal_styles.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\magnav.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\magproto.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\main.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapopolis.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsend.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsource.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\mkshort.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\navicache.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\netstumbler.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\nmea.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\ozi.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\palmdoc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\pcx.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\polygon.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\position.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\psitrex.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\psp.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\queue.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\quovadis.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\reverse_route.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\route.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\saroute.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\smplrout.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\sort.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\text.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tiger.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tmpro.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\tpg.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\util.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\util_crc.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\vecs.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\vmem.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\waypt.c
+# End Source File
+# Begin Source File
+
+SOURCE=..\xcsv.c
+# End Source File
+# Begin Source File
+
+SOURCE=.\Expat\libexpat.lib
+# End Source File
+# End Group
+# Begin Group "Header Files"
+
+# PROP Default_Filter "h;hpp;hxx;hm;inl"
+# Begin Group "Coldsync-Headers"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\coldsync\config.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\palm.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\pdb.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\coldsync\pconn\util.h
+# End Source File
+# End Group
+# Begin Group "Jeeps-Headers"
+
+# PROP Default_Filter ""
+# Begin Source File
+
+SOURCE=..\jeeps\gps.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsapp.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpscom.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsdatum.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsfmt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsinput.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmath.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsmem.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmea.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmeafmt.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsnmeaget.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsport.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsproj.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsprot.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsread.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsrqst.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpssend.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsserial.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\jeeps\gpsutil.h
+# End Source File
+# End Group
+# Begin Source File
+
+SOURCE=..\csv_util.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\defs.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\garmin_tables.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\grtcirc.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\holux.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\magellan.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\mapsend.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\queue.h
+# End Source File
+# Begin Source File
+
+SOURCE=..\quovadis.h
+# End Source File
+# End Group
+# Begin Group "Resource Files"
+
+# PROP Default_Filter "ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe"
+# End Group
+# End Target
+# End Project
--- /dev/null
+<?xml version="1.0" encoding="Windows-1252"?>
+<VisualStudioProject
+ ProjectType="Visual C++"
+ Version="7.10"
+ Name="GPSBabel"
+ SccProjectName=""
+ SccLocalPath="">
+ <Platforms>
+ <Platform
+ Name="Win32"/>
+ </Platforms>
+ <Configurations>
+ <Configuration
+ Name="Release|Win32"
+ OutputDirectory=".\Release"
+ IntermediateDirectory=".\Release"
+ ConfigurationType="1"
+ UseOfMFC="0"
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ InlineFunctionExpansion="1"
+ AdditionalIncludeDirectories="expat,..\coldsync"
+ PreprocessorDefinitions="WIN32;NDEBUG;_CONSOLE;__WIN32__;VERSION=\"1.2.1_beta01072004_msvc\""
+ StringPooling="TRUE"
+ RuntimeLibrary="4"
+ EnableFunctionLevelLinking="TRUE"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderFile=".\Release/GPSBabel.pch"
+ AssemblerListingLocation=".\Release/"
+ ObjectFile=".\Release/"
+ ProgramDataBaseFileName=".\Release/"
+ WarningLevel="3"
+ SuppressStartupBanner="TRUE"
+ CompileAs="0"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile=".\Release/GPSBabel.exe"
+ LinkIncremental="1"
+ SuppressStartupBanner="TRUE"
+ ProgramDatabaseFile=".\Release/GPSBabel.pdb"
+ SubSystem="1"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"
+ TypeLibraryName=".\Release/GPSBabel.tlb"
+ HeaderFileName=""/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="NDEBUG"
+ Culture="1033"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ <Configuration
+ Name="Debug|Win32"
+ OutputDirectory=".\Debug"
+ IntermediateDirectory=".\Debug"
+ ConfigurationType="1"
+ UseOfMFC="0"
+ ATLMinimizesCRunTimeLibraryUsage="FALSE"
+ CharacterSet="2">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories="expat,..\coldsync"
+ PreprocessorDefinitions="WIN32;__WIN32__;_DEBUG;_CONSOLE;VERSION=\"1.2.1_beta01072004_msvc\""
+ BasicRuntimeChecks="3"
+ RuntimeLibrary="5"
+ UsePrecompiledHeader="2"
+ PrecompiledHeaderFile=".\Debug/GPSBabel.pch"
+ AssemblerListingLocation=".\Debug/"
+ ObjectFile=".\Debug/"
+ ProgramDataBaseFileName=".\Debug/"
+ BrowseInformation="1"
+ WarningLevel="3"
+ SuppressStartupBanner="TRUE"
+ DebugInformationFormat="4"
+ CompileAs="0"/>
+ <Tool
+ Name="VCCustomBuildTool"/>
+ <Tool
+ Name="VCLinkerTool"
+ OutputFile=".\Debug/GPSBabel.exe"
+ LinkIncremental="1"
+ SuppressStartupBanner="TRUE"
+ GenerateDebugInformation="TRUE"
+ ProgramDatabaseFile=".\Debug/GPSBabel.pdb"
+ SubSystem="1"
+ TargetMachine="1"/>
+ <Tool
+ Name="VCMIDLTool"
+ TypeLibraryName=".\Debug/GPSBabel.tlb"
+ HeaderFileName=""/>
+ <Tool
+ Name="VCPostBuildEventTool"/>
+ <Tool
+ Name="VCPreBuildEventTool"/>
+ <Tool
+ Name="VCPreLinkEventTool"/>
+ <Tool
+ Name="VCResourceCompilerTool"
+ PreprocessorDefinitions="_DEBUG"
+ Culture="1033"/>
+ <Tool
+ Name="VCWebServiceProxyGeneratorTool"/>
+ <Tool
+ Name="VCXMLDataGeneratorTool"/>
+ <Tool
+ Name="VCWebDeploymentTool"/>
+ <Tool
+ Name="VCManagedWrapperGeneratorTool"/>
+ <Tool
+ Name="VCAuxiliaryManagedWrapperGeneratorTool"/>
+ </Configuration>
+ </Configurations>
+ <References>
+ </References>
+ <Files>
+ <Filter
+ Name="Source Files"
+ Filter="cpp;c;cxx;rc;def;r;odl;idl;hpj;bat">
+ <File
+ RelativePath="..\arcdist.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\cetus.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\copilot.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\csv_util.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\delgpl.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\duplicate.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\easygps.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\filter_vecs.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\garmin.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\gcdb.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\geo.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\geoniche.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\gpilots.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\gpspilot.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\gpsutil.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\gpx.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\grtcirc.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\holux.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\hsa_ndv.c">
+ </File>
+ <File
+ RelativePath="..\html.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\internal_styles.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="Expat\libexpat.lib">
+ </File>
+ <File
+ RelativePath="..\magnav.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\magproto.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\main.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\mapopolis.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\mapsend.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\mapsource.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\mkshort.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\navicache.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\netstumbler.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\nmea.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\ozi.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\palmdoc.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\pcx.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\polygon.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\position.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\psitrex.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\psp.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\queue.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\quovadis.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\reverse_route.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\route.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\saroute.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\smplrout.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\sort.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\text.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\tiger.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\tmpro.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\tpg.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\util.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\util_crc.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\vecs.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\vmem.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\waypt.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\xcsv.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <Filter
+ Name="Jeeps"
+ Filter="">
+ <File
+ RelativePath="..\jeeps\gpsapp.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpscom.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsmath.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsmem.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsprot.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsread.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsrqst.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpssend.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsserial.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsutil.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Jeeps/"
+ ProgramDataBaseFileName="Release\Jeeps/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Jeeps/"
+ ProgramDataBaseFileName="Debug\Jeeps/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ </Filter>
+ <Filter
+ Name="Coldsync"
+ Filter="">
+ <File
+ RelativePath="..\coldsync\pdb.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Coldsync/"
+ ProgramDataBaseFileName="Release\Coldsync/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Coldsync/"
+ ProgramDataBaseFileName="Debug\Coldsync/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ <File
+ RelativePath="..\coldsync\util.c">
+ <FileConfiguration
+ Name="Release|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="2"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ ObjectFile=".\Release\Coldsync/"
+ ProgramDataBaseFileName="Release\Coldsync/"/>
+ </FileConfiguration>
+ <FileConfiguration
+ Name="Debug|Win32">
+ <Tool
+ Name="VCCLCompilerTool"
+ Optimization="0"
+ AdditionalIncludeDirectories=""
+ PreprocessorDefinitions=""
+ BasicRuntimeChecks="3"
+ ObjectFile=".\Debug\Coldsync/"
+ ProgramDataBaseFileName="Debug\Coldsync/"
+ BrowseInformation="1"/>
+ </FileConfiguration>
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Header Files"
+ Filter="h;hpp;hxx;hm;inl">
+ <File
+ RelativePath="..\csv_util.h">
+ </File>
+ <File
+ RelativePath="..\defs.h">
+ </File>
+ <File
+ RelativePath="..\garmin_tables.h">
+ </File>
+ <File
+ RelativePath="..\grtcirc.h">
+ </File>
+ <File
+ RelativePath="..\holux.h">
+ </File>
+ <File
+ RelativePath="..\magellan.h">
+ </File>
+ <File
+ RelativePath="..\mapsend.h">
+ </File>
+ <File
+ RelativePath="..\queue.h">
+ </File>
+ <File
+ RelativePath="..\quovadis.h">
+ </File>
+ <Filter
+ Name="Coldsync-Headers"
+ Filter="">
+ <File
+ RelativePath="..\coldsync\config.h">
+ </File>
+ <File
+ RelativePath="..\coldsync\palm.h">
+ </File>
+ <File
+ RelativePath="..\coldsync\pdb.h">
+ </File>
+ <File
+ RelativePath="..\coldsync\pconn\util.h">
+ </File>
+ </Filter>
+ <Filter
+ Name="Jeeps-Headers"
+ Filter="">
+ <File
+ RelativePath="..\jeeps\gps.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsapp.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpscom.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsdatum.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsfmt.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsinput.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsmath.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsmem.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsnmea.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsnmeafmt.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsnmeaget.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsport.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsproj.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsprot.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsread.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsrqst.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpssend.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsserial.h">
+ </File>
+ <File
+ RelativePath="..\jeeps\gpsutil.h">
+ </File>
+ </Filter>
+ </Filter>
+ <Filter
+ Name="Resource Files"
+ Filter="ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe">
+ </Filter>
+ </Files>
+ <Globals>
+ </Globals>
+</VisualStudioProject>